home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Power Tools
/
Programmer Power Tools.iso
/
c
/
u16pc.arc
/
MAKEFILE
next >
Wrap
Text File
|
1988-12-08
|
320b
|
19 lines
DESTDIR=c:/progs/unix
u16.exe: xcode.obj u16.obj
link /NOI u16.obj+xcode.obj ;
xcode.obj: xcode.asm
masm /ML xcode ;
u16.obj: u16.c
cl -c -Ox u16.c
install: u16.exe
rm -f $(DESTDIR)/u16.exe
exepack u16.exe pu16.exe
mv -f pu16.exe $(DESTDIR)/u16.exe
clean:
rm -f *.obj u16.exe